home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / HandHeldPCPro30 / sdk.exe / Jupiter SDK / data1.cab / MFC_Samples / http / httpdlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-02-19  |  1.3 KB  |  54 lines

  1. // HttpDlg.h : header file
  2. //
  3.  
  4. #if !defined(AFX_HTTPDLG_H__E9CAE8B8_9908_11D1_9327_00600820B4FF__INCLUDED_)
  5. #define AFX_HTTPDLG_H__E9CAE8B8_9908_11D1_9327_00600820B4FF__INCLUDED_
  6.  
  7. #if _MSC_VER >= 1000
  8. #pragma once
  9. #endif // _MSC_VER >= 1000
  10.  
  11.  
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CHttpDlg dialog
  14.  
  15. class CHttpDlg : public CDialog
  16. {
  17. // Construction
  18. public:
  19.     CHttpDlg(CWnd* pParent = NULL);    // standard constructor
  20.  
  21. // Dialog Data
  22.     //{{AFX_DATA(CHttpDlg)
  23. #if defined(_WIN32_WCE_PSPC)
  24.     enum { IDD = IDD_HTTP_DIALOG_PSPC };
  25. #else
  26.     enum { IDD = IDD_HTTP_DIALOG };
  27. #endif        
  28.         // NOTE: the ClassWizard will add data members here
  29.     //}}AFX_DATA
  30.  
  31.     // ClassWizard generated virtual function overrides
  32.     //{{AFX_VIRTUAL(CHttpDlg)
  33.     protected:
  34.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  35.     //}}AFX_VIRTUAL
  36.  
  37. // Implementation
  38. protected:
  39.     HICON m_hIcon;
  40.     int DownloadPage(LPTSTR szAddress);
  41.  
  42.     // Generated message map functions
  43.     //{{AFX_MSG(CHttpDlg)
  44.     virtual BOOL OnInitDialog();
  45.     afx_msg void OnDownloadpage();
  46.     //}}AFX_MSG
  47.     DECLARE_MESSAGE_MAP()
  48. };
  49.  
  50. //{{AFX_INSERT_LOCATION}}
  51. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  52.  
  53. #endif // !defined(AFX_HTTPDLG_H__E9CAE8B8_9908_11D1_9327_00600820B4FF__INCLUDED_)
  54.